home *** CD-ROM | disk | FTP | other *** search
/ ArtGames with the Albright-Knox Art Gallery / Artgames With the Albright-Knox Art Gallery (HSBC)(AlbrightKnox).ISO / pc / games / niagara.swf / scripts / DefineSprite_146 / frame_1 / DoAction.as
Text File  |  2003-09-22  |  434b  |  28 lines

  1. function nextCloseUp()
  2. {
  3.    if(!seenCamcorder)
  4.    {
  5.       gotoAndPlay(20);
  6.    }
  7.    else if(!seenChemicals)
  8.    {
  9.       gotoAndPlay(10);
  10.    }
  11.    else if(!seenFactories)
  12.    {
  13.       gotoAndPlay(30);
  14.    }
  15.    else if(!seenPipes)
  16.    {
  17.       gotoAndPlay(40);
  18.    }
  19.    else
  20.    {
  21.       _parent.gotoAndPlay("mooreSummary");
  22.    }
  23. }
  24. seenChemicals = false;
  25. seenCamcorder = false;
  26. seenFactories = false;
  27. seenPipes = false;
  28.